:root{
  --navy:#010D35;
  --blue:#0075FF;
  --orange:#FE951C;
  --orange-deep:#d97906;
  --soft-bg:#f1f5fb;
  --surface:#ffffff;
  --ink:#13213e;
  --muted:#5c6982;
  --line:rgba(8, 24, 67, 0.08);
  --shadow-lg:0 28px 60px rgba(6, 24, 68, 0.12);
  --shadow-md:0 18px 40px rgba(8, 24, 67, 0.1);
  --comment-bg:#181a20;
  --comment-card:#23262f;
  --star:#ffbc42;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI', sans-serif;
  background:linear-gradient(180deg, #eef3f9 0%, #ffffff 100%);
  color:var(--ink);
  padding-top:90px;
}

img{
  max-width:100%;
}

/* NAVBAR */
.custom-navbar{
  background:white;
  padding:20px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-link{
  font-weight:500;
  color:#1e1e1e !important;
  transition:0.3s;
}

.nav-link:hover{
  color:var(--blue) !important;
}

.active-link{
  color:var(--blue) !important;
  font-weight:600;
}

.nav-icon{
  font-size:20px;
  color:#1e1e1e;
  transition:0.3s;
}

.nav-icon:hover{
  color:var(--blue);
}

.mobile-page-title{
  font-weight:700;
  color:var(--navy);
}

/* USER DROPDOWN */
.user-dropdown-wrapper{ position:relative; }
.btn-user-trigger{ display:flex; align-items:center; gap:8px; background:transparent; border:none; padding:0; cursor:pointer; color:inherit; }
.user-avatar-circle{
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(135deg, #6c63ff, #ff6584);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
  color:#fff;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(255,255,255,0.15);
}
.user-avatar-circle img{ width:100%; height:100%; object-fit:cover; }
.user-dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:220px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 8px 30px rgba(0,0,0,0.12);
  overflow:hidden;
  z-index:9999;
  animation:dropFadeIn 0.18s ease;
}
.user-dropdown-menu.show{ display:block; }
@keyframes dropFadeIn{
  from{ opacity:0; transform:translateY(-6px); }
  to{ opacity:1; transform:translateY(0); }
}
.drop-header{
  padding:14px 16px;
  border-bottom:1px solid #f0f0f0;
  background:#fff;
  display:flex;
  align-items:center;
  gap:10px;
}
.drop-header-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  background:linear-gradient(135deg, #6c63ff, #ff6584);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:700;
  color:#fff;
  flex-shrink:0;
  overflow:hidden;
}
.drop-header-avatar img{ width:100%; height:100%; object-fit:cover; }
.drop-user-name{
  font-size:13px;
  font-weight:600;
  color:#111827;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.drop-user-email{
  font-size:11px;
  color:#6b7280;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.drop-section{ padding:6px; background:#fff; }
.drop-section + .drop-section{ border-top:1px solid #f0f0f0; }
.drop-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 10px;
  border-radius:10px;
  color:#374151;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
  cursor:pointer;
  background:transparent;
  border:none;
  width:100%;
  text-align:left;
  transition:background 0.15s;
}
.drop-item:hover{ background:#f3f4f6; color:#111827; }
.drop-item.danger{ color:#ef4444; }
.drop-item.danger:hover{ background:rgba(239,68,68,0.07); }
.drop-icon{
  width:28px;
  height:28px;
  border-radius:7px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  flex-shrink:0;
}

/* HERO */
.detail-hero{
  position:relative;
  overflow:hidden;
  padding:106px 0 92px;
  color:#fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(254,149,28,0.2), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(0,117,255,0.2), transparent 25%),
    linear-gradient(135deg, #020f3f 0%, #073f94 52%, #0f7cf4 100%);
}

.detail-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08) 0%, transparent 24%),
    linear-gradient(300deg, rgba(255,255,255,0.04) 0%, transparent 20%);
  pointer-events:none;
}

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(12px);
  opacity:0.9;
}

.hero-glow-one{
  width:260px;
  height:260px;
  right:8%;
  top:-90px;
  background:radial-gradient(circle, rgba(254,149,28,0.34) 0%, rgba(254,149,28,0) 70%);
}

.hero-glow-two{
  width:320px;
  height:320px;
  left:-80px;
  bottom:-140px;
  background:radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 70%);
}

.hero-copy,
.hero-summary-card{
  position:relative;
  z-index:1;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.15);
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.hero-copy h1{
  font-size:clamp(3rem, 5vw, 4.9rem);
  line-height:0.95;
  margin-bottom:18px;
}

.hero-lead{
  font-size:1.08rem;
  color:rgba(255,255,255,0.82);
  line-height:1.78;
  margin-bottom:30px;
  max-width:640px;
}

.hero-meta-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.hero-meta-card{
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,0.11);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 30px rgba(6, 24, 68, 0.15);
}

.hero-meta-card span{
  display:block;
  font-size:0.76rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
  margin-bottom:8px;
}

.hero-meta-card strong{
  display:block;
  font-size:1rem;
  color:#fff;
}

.hero-summary-card{
  padding:28px;
  border-radius:30px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(18px);
}

.summary-kicker{
  display:inline-block;
  color:#ffcf8a;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.hero-summary-card h2{
  font-size:1.8rem;
  line-height:1.2;
  margin-bottom:14px;
}

.hero-summary-card p{
  color:rgba(255,255,255,0.82);
  line-height:1.75;
  margin-bottom:22px;
}

.summary-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.summary-tags span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  font-size:0.92rem;
  font-weight:600;
}

.summary-tags i{
  color:#ffcf8a;
}

/* SHARED */
.section-padding{
  padding:100px 0;
}

.section-heading{
  max-width:740px;
  margin:0 auto 54px;
}

.section-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(0,117,255,0.08);
  color:var(--blue);
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-heading h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.05;
  color:var(--navy);
  margin-bottom:16px;
}

.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.8;
}

/* STORY */
.story-section{
  position:relative;
}

.story-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 14% 18%, rgba(0,117,255,0.08), transparent 18%),
    radial-gradient(circle at 86% 82%, rgba(254,149,28,0.1), transparent 20%);
  pointer-events:none;
}

.story-card{
  position:relative;
  height:100%;
  padding:30px;
  border-radius:28px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.story-media{
  width:100%;
  height:190px;
  margin-bottom:22px;
  border-radius:20px;
  overflow:hidden;
  background:#dbe8ff;
}

.story-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.story-card h3{
  font-size:1.45rem;
  color:var(--navy);
  margin-bottom:12px;
}

.story-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

/* RECAP */
.recap-section{
  background:linear-gradient(180deg, var(--soft-bg) 0%, #ffffff 100%);
}

.recap-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(350px, 0.72fr);
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(8, 24, 67, 0.08);
}

.recap-gallery{
  position:relative;
  min-height:720px;
  background:#111;
}

.recap-carousel,
.recap-carousel .carousel-inner,
.recap-carousel .carousel-item{
  height:100%;
  min-height:720px;
}

.poster-slide,
.gallery-photo-card,
.gallery-video-card{
  position:relative;
  height:100%;
  min-height:720px;
}

.poster-image,
.gallery-photo-card img,
.gallery-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.poster-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 52%, rgba(0,0,0,0.74) 100%),
    radial-gradient(circle at top center, rgba(254,149,28,0.18) 0%, rgba(254,149,28,0) 30%);
}

.poster-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:38px;
  color:#fff;
}

.poster-topline{
  align-self:flex-start;
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(17,19,24,0.72);
  border:1px solid rgba(255,186,66,0.4);
  color:#ffea92;
  font-weight:800;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.poster-logo-wrap{
  width:110px;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.68) 70%);
  box-shadow:0 0 0 12px rgba(255,169,22,0.18);
  margin-bottom:18px;
}

.poster-logo-wrap img{
  width:76px;
}

.poster-badge{
  align-self:flex-start;
  display:inline-flex;
  padding:10px 16px;
  border-radius:18px;
  background:#ffcb48;
  color:#17181c;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:16px;
}

.poster-content h2{
  font-size:clamp(2.6rem, 4vw, 4.4rem);
  line-height:0.9;
  text-transform:uppercase;
  text-shadow:0 16px 36px rgba(0,0,0,0.34);
  margin-bottom:18px;
}

.poster-details{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:12px;
}

.poster-details span,
.poster-content p{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(17,19,24,0.56);
  border:1px solid rgba(255,255,255,0.14);
  margin:0;
}

.gallery-caption{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
  padding:22px 24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(11,18,39,0.74) 0%, rgba(11,18,39,0.88) 100%);
  color:#fff;
  backdrop-filter:blur(14px);
}

.gallery-caption span{
  display:block;
  color:#9ec8ff;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.gallery-caption strong{
  display:block;
  font-size:1.2rem;
  line-height:1.35;
}

.gallery-video-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 52%, rgba(0,0,0,0.28) 100%);
  pointer-events:none;
}

.video-slide-pill{
  position:absolute;
  top:24px;
  left:24px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(11,18,39,0.72);
  border:1px solid rgba(255,255,255,0.14);
  color:#fff;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
}

.video-slide-pill i{
  color:#ffcf8a;
}

.video-sound-toggle{
  position:absolute;
  right:28px;
  bottom:28px;
  z-index:3;
  width:50px;
  height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.24);
  border-radius:50%;
  background:rgba(1,13,53,0.78);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,0.28);
  backdrop-filter:blur(10px);
  transition:background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.video-sound-toggle i{
  display:block;
  font-size:1.35rem;
  line-height:1;
}

.video-sound-toggle:hover{
  background:var(--blue);
  border-color:rgba(255,255,255,0.42);
  transform:translateY(-2px);
}

.video-sound-toggle.is-on{
  background:var(--orange);
  color:#07153a;
}

.gallery-video-card .gallery-caption{
  right:96px;
}

.custom-arrow{
  width:58px;
  height:58px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  background:rgba(11,18,39,0.64);
  border:1px solid rgba(255,255,255,0.16);
  opacity:1;
}

.carousel-control-prev.custom-arrow{
  left:24px;
}

.carousel-control-next.custom-arrow{
  right:24px;
}

.custom-arrow:hover{
  background:rgba(254,149,28,0.86);
}

.comments-panel{
  display:flex;
  flex-direction:column;
  background:var(--comment-bg);
  color:#fff;
  min-height:720px;
}

.comments-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:22px 24px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.comments-profile{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.comments-account-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.comments-profile strong{
  display:block;
  font-size:1.1rem;
}

.comments-profile span{
  display:block;
  color:rgba(255,255,255,0.7);
  font-size:0.92rem;
}

.comments-avatar{
  width:46px;
  height:46px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(0,117,255,0.92), rgba(254,149,28,0.92));
  overflow:hidden;
}

.comments-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.comments-avatar-small{
  width:38px;
  height:38px;
}

.profile-rating{
  display:flex;
  flex-direction:column;
  gap:5px;
  margin-top:2px;
}

.profile-rating-stars{
  display:flex;
  gap:4px;
  color:var(--star);
  font-size:0.88rem;
}

.profile-rating small{
  color:rgba(255,255,255,0.62);
  font-size:0.82rem;
}

.comments-more{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}

.comments-body{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:24px;
  flex:1;
}

.post-copy{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.post-copy-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.post-copy-head p{
  margin:0;
  color:rgba(255,255,255,0.86);
  line-height:1.75;
}

.post-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-left:50px;
}

.post-tags span{
  color:#7da7ff;
  font-weight:600;
}

.comments-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:4px;
}

.comments-section-head span{
  color:rgba(255,255,255,0.64);
  font-size:0.8rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.comments-section-head strong{
  font-size:0.96rem;
  color:#fff;
}

.rating-stars,
.comment-stars,
.review-stars{
  display:flex;
  gap:5px;
  color:var(--star);
}

.comments-feed{
  position:relative;
  flex:1;
  min-height:220px;
  overflow:auto;
  padding-right:4px;
}

.comments-feed::-webkit-scrollbar{
  width:8px;
}

.comments-feed::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.18);
  border-radius:999px;
}

.comment-list{
  display:grid;
  gap:14px;
}

.comment-empty-state{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,0.05);
  border:1px dashed rgba(255,255,255,0.14);
}

.comment-empty-state[hidden]{
  display:none;
}

.comment-empty-icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:1.4rem;
}

.comment-empty-state h3{
  font-size:1.1rem;
  margin:0;
}

.comment-empty-state p{
  margin:0;
  color:rgba(255,255,255,0.74);
  line-height:1.7;
}

.comment-card{
  padding:18px;
  border-radius:22px;
  background:var(--comment-card);
  border:1px solid rgba(255,255,255,0.08);
}

.comment-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.comment-author{
  display:flex;
  align-items:center;
  gap:12px;
}

.comment-author-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  background:rgba(255,255,255,0.08);
}

.comment-author-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.comment-author-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.comment-score{
  color:rgba(255,255,255,0.6);
  font-size:0.82rem;
}

.comment-card p{
  color:rgba(255,255,255,0.84);
  line-height:1.7;
  margin-bottom:10px;
}

.comment-meta{
  color:rgba(255,255,255,0.56);
  font-size:0.86rem;
}

.post-footer{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.post-engagement{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.likes-line{
  display:flex;
  align-items:center;
  gap:12px;
}

.likes-line p{
  margin:0;
  color:rgba(255,255,255,0.88);
}

.likes-avatars{
  display:flex;
  align-items:center;
}

.likes-avatars span{
  width:28px;
  height:28px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid var(--comment-bg);
  margin-right:-8px;
  background:rgba(255,255,255,0.08);
}

.likes-avatars img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.post-date{
  color:rgba(255,255,255,0.56);
  font-size:0.86rem;
}

.comment-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.comment-form-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.comment-form-user{
  color:rgba(255,255,255,0.78);
  font-size:0.92rem;
}

.composer-stars{
  display:flex;
  align-items:center;
  gap:6px;
}

.composer-star{
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.58);
  transition:background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.composer-star.active,
.composer-star:hover{
  background:rgba(255,188,66,0.14);
  color:var(--star);
  transform:translateY(-1px);
}

.composer-star:disabled{
  cursor:not-allowed;
  opacity:0.5;
  transform:none;
}

.comment-input-row{
  display:grid;
  grid-template-columns:44px minmax(0, 1fr) auto;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.comment-input-icon{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:rgba(255,255,255,0.72);
  font-size:1.35rem;
}

.comment-input-row textarea{
  width:100%;
  resize:none;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
  min-height:24px;
  max-height:120px;
  line-height:1.5;
}

.comment-input-row textarea::placeholder{
  color:rgba(255,255,255,0.46);
}

.comment-input-row textarea:disabled{
  cursor:not-allowed;
}

.publish-button{
  border:none;
  background:transparent;
  color:#b0b6c9;
  font-weight:700;
  padding:6px 4px;
}

.publish-button:not(:disabled){
  color:#d7ebff;
}

.publish-button:not(:disabled):hover{
  color:#ffffff;
}

.comment-form-note{
  color:rgba(255,255,255,0.56);
  font-size:0.84rem;
}

/* COLLABORATIONS */
.collab-section{
  position:relative;
}

.collab-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 20%, rgba(254,149,28,0.08), transparent 18%),
    radial-gradient(circle at 88% 80%, rgba(0,117,255,0.08), transparent 18%);
  pointer-events:none;
}

.collab-card{
  height:100%;
  padding:28px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
}

.collab-card-dashed{
  border-style:dashed;
}

.collab-media{
  width:100%;
  height:220px;
  overflow:hidden;
  border-radius:22px;
  margin-bottom:22px;
  background:#dce8ff;
}

.collab-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.collab-label{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,117,255,0.08);
  color:var(--blue);
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.collab-card h3{
  color:var(--navy);
  font-size:1.35rem;
  margin-bottom:12px;
}

.collab-card p{
  margin:0 0 22px;
  color:var(--muted);
  line-height:1.75;
}

.collab-social-btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:50px;
  padding:13px 18px;
  border-radius:18px;
  text-decoration:none;
  font-weight:700;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow:0 14px 26px rgba(8, 24, 67, 0.08);
}

.collab-social-btn:hover{
  transform:translateY(-2px);
}

.collab-social-btn i{
  font-size:1.08rem;
}

.collab-social-btn.social-instagram{
  background:linear-gradient(135deg, #fd5949, #d6249f 55%, #285aeb);
  color:#fff;
}

.collab-social-btn.social-youtube{
  background:#ff2d20;
  color:#fff;
}

.collab-social-btn.social-tiktok{
  background:linear-gradient(135deg, #10151f, #1c1f2a);
  color:#fff;
}

.collab-social-btn.social-facebook{
  background:#1877f2;
  color:#fff;
}

.collab-social-btn.social-x{
  background:#111827;
  color:#fff;
}

.collab-social-btn.social-linkedin{
  background:#0a66c2;
  color:#fff;
}

.collab-social-btn.social-whatsapp{
  background:#1fa855;
  color:#fff;
}

.collab-social-btn.social-telegram{
  background:#229ed9;
  color:#fff;
}

.collab-social-btn.social-website{
  background:linear-gradient(135deg, rgba(0,117,255,0.92), rgba(1,13,53,0.92));
  color:#fff;
}

/* FOOTER */
.footer-section{
  background:var(--navy);
  color:white;
  padding:80px 0 30px;
}

.footer-title{
  font-weight:700;
  margin-bottom:15px;
}

.footer-subtitle{
  font-weight:600;
  margin-bottom:15px;
  position:relative;
}

.footer-subtitle::after{
  content:"";
  width:40px;
  height:3px;
  background:var(--blue);
  position:absolute;
  left:0;
  bottom:-5px;
}

.footer-text{
  color:#ccc;
  font-size:14px;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:white;
  padding-left:5px;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  color:white;
  margin-right:8px;
  transition:0.3s;
}

.footer-social a:hover{
  background:var(--blue);
  transform:translateY(-3px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  font-size:14px;
  color:#aaa;
}

/* ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active{
  opacity:1;
  transform:translateX(0);
}

.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

/* RESPONSIVE */
@media(max-width:1199px){
  .hero-copy h1{
    font-size:clamp(2.8rem, 5vw, 4.3rem);
  }

  .recap-shell{
    grid-template-columns:1fr;
  }

  .comments-panel{
    min-height:auto;
  }

  .recap-gallery,
  .recap-carousel,
  .recap-carousel .carousel-inner,
  .recap-carousel .carousel-item,
  .poster-slide,
  .gallery-photo-card,
  .gallery-video-card{
    min-height:620px;
  }
}

@media(max-width:991px){
  .detail-hero{
    padding:96px 0 84px;
  }

  .hero-meta-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .section-padding{
    padding:84px 0;
  }
}

@media(max-width:768px){
  .detail-hero{
    text-align:center;
    padding:86px 0 74px;
  }

  .hero-meta-grid{
    grid-template-columns:1fr;
  }

  .summary-tags{
    justify-content:center;
  }

  .recap-gallery,
  .recap-carousel,
  .recap-carousel .carousel-inner,
  .recap-carousel .carousel-item,
  .poster-slide,
  .gallery-photo-card,
  .gallery-video-card{
    min-height:520px;
  }

  .poster-content{
    padding:24px;
  }

  .poster-content h2{
    font-size:2.5rem;
  }

  .poster-details{
    flex-direction:column;
    align-items:flex-start;
  }

  .comments-header,
  .comments-body{
    padding:20px;
  }

  .video-slide-pill{
    top:16px;
    left:16px;
  }

  .comments-section-head,
  .comment-card-top,
  .comment-form-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .post-tags{
    margin-left:0;
  }

  .comment-input-row{
    grid-template-columns:1fr;
    align-items:stretch;
  }

  .comment-input-icon{
    display:none;
  }

  .publish-button{
    justify-self:flex-end;
  }

  .custom-arrow{
    width:50px;
    height:50px;
  }

  .carousel-control-prev.custom-arrow{
    left:14px;
  }

  .carousel-control-next.custom-arrow{
    right:14px;
  }
}

@media(max-width:576px){
  body{
    padding-top:82px;
  }

  .hero-copy h1{
    font-size:2.5rem;
  }

  .hero-lead{
    font-size:1rem;
  }

  .hero-summary-card,
  .story-card,
  .review-card{
    padding:24px;
  }

  .recap-shell{
    border-radius:26px;
  }

  .recap-gallery,
  .recap-carousel,
  .recap-carousel .carousel-inner,
  .recap-carousel .carousel-item,
  .poster-slide,
  .gallery-photo-card,
  .gallery-video-card{
    min-height:460px;
  }

  .poster-topline,
  .poster-badge,
  .poster-details span,
  .poster-content p{
    font-size:0.82rem;
  }

  .poster-content h2{
    font-size:2rem;
  }

  .gallery-caption{
    left:16px;
    right:16px;
    bottom:16px;
    padding:18px;
  }

  .gallery-video-card .gallery-caption{
    right:82px;
  }

  .video-sound-toggle{
    right:16px;
    bottom:16px;
    width:48px;
    height:48px;
  }

  .comments-profile strong{
    font-size:1rem;
  }

  .review-card{
    padding:22px;
  }

  .collab-card{
    padding:22px;
  }

  .collab-media{
    height:190px;
  }
}

@media(max-width:768px){
  .reveal-left,
  .reveal-right{
    transform:none !important;
  }
}
